home *** CD-ROM | disk | FTP | other *** search
- /* main.cpp
- *
- * This is the actual core which makes this thing fly.
- */
-
- #include <string.h>
- #include <XApplication.h>
- #include <XWindow.h>
-
-
- /************************************************************************/
- /* */
- /* Main entry point */
- /* */
- /************************************************************************/
-
- /* StartApplication
- *
- * This starts up the application
- */
-
- XGAppCore *StartApplication(void)
- {
- XGAppMultiWindow *aw;
-
- /*
- * Start application engine
- */
-
- aw = new XGAppMultiWindow;
-
- /*
- * Start window
- */
-
- XGWindow::Create(128);
- XGWindow::Create(129);
-
- /*
- * Done. Return
- */
-
- return aw;
- }
-